home *** CD-ROM | disk | FTP | other *** search
- #!/bin/sh
- #
- # build new symbol database files for a workarea
- #
- # Usage: bldsyms [top-dir]
- # default for top-dir is $WORKAREA
- #
-
- SymTypes="id"
- TopDir=`pwd`
-
- #
- # Generate a SRCFILES file, containing all the files to analyze
- #
-
- rm -f $TopDir/SRCFILES
- echo "Generating list of source files..."
- listsrc $TopDir >> $TopDir/SRCFILES
-
- #
- # Start generating databases
- #
- for SymType in $SymTypes; do
- syms.$SymType $TopDir/SRCFILES &
- done
-